home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tex / macros / source / contrib / fragments / removefr.tex < prev   
Encoding:
Text File  |  1995-03-10  |  590 b   |  14 lines

  1. %Date: Sat, 30 Jul 1994 17:58:55 PST
  2. %From: Donald Arseneau <asnd@erich.triumf.ca>
  3. %
  4. %  \@removefromreset{FOO}{BAR} : Removes counter FOO from the list of
  5. %                       counters \cl@BAR to be reset when counter BAR
  6. %                       is stepped.  The opposite of \@addtoreset.
  7.  
  8. \def\@removefromreset#1#2{\let\@tempb\@elt
  9.    \expandafter\let\expandafter\@tempa\csname c@#1\endcsname
  10.    \def\@elt##1{\expandafter\ifx\csname c@##1\endcsname\@tempa\else
  11.          \noexpand\@elt{##1}\fi}%
  12.    \expandafter\edef\csname cl@#2\endcsname{\csname cl@#2\endcsname}%
  13.    \let\@elt\@tempb}
  14.